home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / Clinic / AutomationProjects.bpg < prev    next >
Encoding:
Borland Project Group  |  1999-03-12  |  1.1 KB  |  34 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = AutomationServer1.exe AutomationServer2.exe AutomationClient1.exe \
  13.   AutomationClient1B.exe AutomationClient2.exe
  14. #------------------------------------------------------------------------------
  15. default: $(PROJECTS)
  16. #------------------------------------------------------------------------------
  17.  
  18. AutomationServer2.exe: AutomationServer2.dpr
  19.   $(DCC)
  20.  
  21. AutomationClient2.exe: AutomationClient2.dpr
  22.   $(DCC)
  23.  
  24. AutomationClient1.exe: AutomationClient1.dpr
  25.   $(DCC)
  26.  
  27. AutomationServer1.exe: AutomationServer1.dpr
  28.   $(DCC)
  29.  
  30. AutomationClient1B.exe: AutomationClient1B.dpr
  31.   $(DCC)
  32.  
  33.  
  34.